找传奇、传世资源到传世资源站!

TTS语音播报实例源码(可朗读中文、英文)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

支持不同人种的发音(老年人、男生、女生等)  
TTS语音播报实例源码(可朗读中文、英文) C#语言基础-第1张
TTS语音播报实例源码(可朗读中文、英文) C#语言基础-第2张  using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace TTS_Test{ public partial class Form1 : Form { private System.Media.SoundPlayer player; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { button1.Enabled = false; string c1 = "appid=4e9d1fa5"; TTS tts = new TTS(c1); tts.Finished = tts_Finished; tts.vol = enuVol.x_loud; tts.speed = enuSpeed.medium; tts.speeker = (enuSpeeker)comboBox1.SelectedIndex; tts.MultiSpeek(textBox1.Text, "audio.wav"); button1.Enabled = true; //player = new System.Media.SoundPlayer("audio.wav"); //player.Play(); } void tts_Finished(object sender, TTS.JinDuEventArgs e) { System.Diagnostics.Debug.WriteLine(e.AllP.ToString()); } private void Form1_Load(object sender, EventArgs e) { foreach (string s in Enum.GetNames(typeof(enuSpeeker))) comboBox1.Items.Add(s); comboBox1.SelectedIndex = 0; } private void button2_Click(object sender, EventArgs e) { Random rd = new Random(); int num = rd.Next(0, 4); label1.Text = num.ToString(); } }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复